home *** CD-ROM | disk | FTP | other *** search
/ Resource Library: Multimedia / Resource Library: Multimedia.iso / hypertxt / msdos / hydos10 / copy < prev    next >
Text File  |  1991-04-10  |  2KB  |  38 lines

  1.                                     COPY
  2.        Copies a file (or group of files) to the same or another disk
  3.                     See also <XCOPY> <VERIFY> <DISKCOPY>
  4.  
  5. COMMAND TYPE: Internal                  VERSION: 2.0 and up
  6.  
  7. USE:  COPY [/A][/B][d:][path] filename [/A][/B][d:][path] [filename]
  8.            [/A][/B][/V]
  9.  or   COPY [/A][/B][d:][path] filename [/A][/B][+[d:][path] filename
  10.            [/A][/B]] [d:][path] [filename] [/A][/B][/V]
  11.  or   COPY [/A][/B][d:][path] filename [/A][/B][+[[,,]d:][path]
  12.            filename [/A][/B]...] [d:][path][filename] [/A][/B][/V]
  13.  
  14. The first d: path filename specifies the source file.
  15.  
  16. The + symbol will cause files to be joined together as they are
  17. copied.  For example:  COPY FILE1+FILE2 FILE3 will copy the contents
  18. of FILE1 and FILE2 into FILE3.  Multiple files may be joined in one operation.
  19.  
  20. The second d: path filename specifies the destination file.
  21.  
  22. When /A (ascii) is used with the source filename, it will be copied up
  23. to the first end of file marker (Ctrl-Z). The rest of the file will
  24. not be copied.
  25. When /A is used following the destination file, an end of file marker
  26. will be added to the end of the file.
  27.  
  28. When /B (binary) is used with the source filename, the entire file
  29. will be copied (including CTRL-Z).  This is the default.
  30. When /B is used following the destination filename, no end of file
  31. marker will be added to the end of the file.
  32.  
  33. /V verifies that the data is copied correctly.
  34.  
  35. Wild Card characters are allowed within or in place of filenames.
  36. Wildcards in the destination will be replaced by the corresponding
  37. filename or part of filename from the source file list.
  38.